コンソールはプログラミング言語で制御できますか? (Can consoles be controlled by programming languages?)


問題の説明

コンソールはプログラミング言語で制御できますか? (Can consoles be controlled by programming languages?)

コンピュータ管理コンソールには、ローカル ユーザー & があります。グループ フォルダ。そのコンソールを介して特定のグループのメンバーを追加または削除できることを理解しています.

私の質問は、コンソールを使用せずに、つまりプログラミング言語を使用して、指定されたアクションを実行することは可能ですか?

p>

現在、Python と VBA に精通しています。


リファレンスソリューション

方法 1:

Yes! This is possible. Microsoft has implemented a powerful scripting language called Powershell which is based on VBscript and the standard CMD syntax for this.

To access the Integrated Scripting Enviroment, press the Windows key + X at the same time, and click the Powershell button in the dialog that appears.

There is a ton of documentation in the manpages.

For more info: https://technet.microsoft.com/en‑us/scriptcenter/dd742419.aspx

If you're a sysadmin (like me) it is imperative you learn how to use it, as Microsoft is phasing out the GUI for Powershell automation step by step, and you'll NEED to know this, saves you so much work.

(by Azmin Hootaundine)

リファレンスドキュメント

  1. Can consoles be controlled by programming languages? (CC BY‑SA 2.5/3.0/4.0)

#Python #vba #Console






関連する質問

再帰的なテキスト分割の問題 (Trouble with recursive text splitting)

行継続文字エラーの後に予期しない文字が表示されます (I am getting an unexpected character after line continuation character error)

distutils で Tkinter を要求するにはどうすればよいですか? (How do I require Tkinter with distutils?)

Python の super() と super (className,self) の違い (Difference between super() and super (className,self) in Python)

TensorFlow 2はcolab googleとwindows 10でバージョンを表示しません (TensorFlow 2 not show the version in colab google and windows 10)

それぞれが親ループに依存する4つのネストされたループの時間の複雑さは何ですか? (What is time complexity of 4 nested loops which each depend on the parent loop)

Pyqt5 での KeyEvent の正しい処理、KeyPressEvent のキャッチに関する問題 (Correct handling of KeyEvent in Pyqt5, problem with catching KeyPressEvent)

文字列形式の辞書のリストを Python のデータフレームに変換する方法はありますか? (Is there a way to convert list of string formatted dictionary to a dataframe in Python?)

母音 + 周囲の子音で文字列を分割 (split string at vowel + surrounding consonants)

plumbum: stdin に変数を送信する方法は? (plumbum: How to send a variable to stdin?)

Python - ビデオ処理。方法: 1) ビデオのピクセル値を変更し (つまり、ピクセル効果)、2) すべてのピクセルの情報を取得します。 (Python - video processing. How to: 1) change pixels value in videos (ie pixelated effect), and then 2) retrieve every single pixel's information)

ボットが 1 つのコマンド discord.py に複数回応答する問題 (Issue with bot responding multiple times to one command discord.py)







コメント